a48d153c26e01cf7c01241a0db68e41b1e060e5b,applications/content/src/main/java/org/apache/ofbiz/content/content/ContentWorker.java,ContentWorker,renderSubContentAsTextExt,#LocalDispatcher#Delegator#String#String#Map#Locale#String#boolean#,106
Before Change
@Override
public String renderSubContentAsTextExt(LocalDispatcher dispatcher, Delegator delegator, String contentId, String mapKey, Map<String, Object> templateContext, Locale locale, String mimeTypeId, boolean cache) throws GeneralException, IOException {
return renderSubContentAsText(dispatcher, delegator, contentId, mapKey, templateContext, locale, mimeTypeId, cache);
}
@Override
After Change
}
@Override
public void renderSubContentAsTextExt(LocalDispatcher dispatcher, String contentId, Appendable out, String mapKey, Map<String, Object> templateContext, Locale locale, String mimeTypeId, boolean cache) throws GeneralException, IOException {
renderSubContentAsText(dispatcher, contentId, out, mapKey, templateContext, locale, mimeTypeId, cache);
}
@Override